@prefix iop: <https://w3id.org/iadopt/ont/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix ex: <http://example.org/iadopt/HFR> .

ex:Variable
    a 
        iop:Variable ;
    rdfs:label 
        "RDCT_QC Radial count quality flag" ;
    rdfs:comment 
        """QC flags labelling radial velocity vectors with a “good data” flag if the number of velocity vectors contained in the velocity field is bigger than the minimum count specified for normal operations. Otherwise, the vectors are labelled with a “bad data” flag""" ;
    iop:hasObjectOfInterest 
        ex:OoI ;
    iop:hasProperty 
        ex:Prop ;
    iop:hasConstraint 
        [ a iop:Constraint ;
             rdfs:label "over a threshold value" ;
             iop:constrains ex:Prop ;
        ] .

ex:OoI
    a 
        iop:Entity ;
    rdfs:label 
        "number of RDVA" .

ex:Prop
    a 
        iop:Property ;
    rdfs:label 
        "quality flag" .
